home *** CD-ROM | disk | FTP | other *** search
/ CU Amiga Super CD-ROM 15 / CU Amiga Magazine's Super CD-ROM 15 (1997)(EMAP Images)(GB)[!][issue 1997-10].iso / CUCD / Graphics / Ghostscript / source / icolor.h < prev    next >
C/C++ Source or Header  |  1996-09-21  |  2KB  |  44 lines

  1. /* Copyright (C) 1994, 1996 Aladdin Enterprises.  All rights reserved.
  2.   
  3.   This file is part of Aladdin Ghostscript.
  4.   
  5.   Aladdin Ghostscript is distributed with NO WARRANTY OF ANY KIND.  No author
  6.   or distributor accepts any responsibility for the consequences of using it,
  7.   or for whether it serves any particular purpose or works at all, unless he
  8.   or she says so in writing.  Refer to the Aladdin Ghostscript Free Public
  9.   License (the "License") for full details.
  10.   
  11.   Every copy of Aladdin Ghostscript must include a copy of the License,
  12.   normally in a plain ASCII text file named PUBLIC.  The License grants you
  13.   the right to copy, modify and redistribute Aladdin Ghostscript, but only
  14.   under certain conditions described in the License.  Among other things, the
  15.   License requires that the copyright notice and this notice be preserved on
  16.   all copies.
  17. */
  18.  
  19. /* icolor.h */
  20. /* Declarations for transfer function & similar cache remapping */
  21.  
  22. /* Define the number of stack slots needed for zcolor_remap_one. */
  23. /* The client is responsible for doing check_e/ostack or the equivalent */
  24. /* before calling zcolor_remap_one. */
  25. extern const int zcolor_remap_one_ostack;
  26. extern const int zcolor_remap_one_estack;
  27.  
  28. /* Schedule the sampling and reloading of a cache. */
  29. int zcolor_remap_one(P5(const ref *, os_ptr, gx_transfer_map *,
  30.             const gs_state *, int (*)(P1(os_ptr))));
  31.  
  32. /* Reload a cache with entries in [0..1] after sampling. */
  33. int zcolor_remap_one_finish(P1(os_ptr));
  34.  
  35. /* Reload a cache with entries in [-1..1] after sampling. */
  36. int zcolor_remap_one_signed_finish(P1(os_ptr));
  37.  
  38. /* Recompute the effective transfer functions and invalidate the current */
  39. /* color after cache reloading. */
  40. int zcolor_reset_transfer(P1(os_ptr));
  41.  
  42. /* Invalidate the current color after cache reloading. */
  43. int zcolor_remap_color(P1(os_ptr));
  44.